home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-12-21 | 1.7 KB | 96 lines | [TEXT/MPS ] |
- object oIntro_One_19 is cDefaultContainer
- with
- Binder is oBinder;
- Label is 0;
- Items is [
- oKeyboard_Volume__19_9,
- oOP_SCRP_PIC_19_1,
- oOP_SCRP_MOV_19_2
- ];
- end;
-
-
- object oKeyboard_Volume__19_9 is cKeyboardHandler
- with
- Behavior is cDefaultBehavior
- has
- KeyDown(theTarget, theKey)
- use
- KeyMatch;
-
- do
- KeyMatch := theKey = '-';
- if KeyMatch then
- theTarget.DoDefaultMethod := false;
-
- oSoundVolume.StepIndexBy(-1);
- end;
- KeyMatch := theKey = '=';
- if KeyMatch then
- theTarget.DoDefaultMethod := false;
-
- oSoundVolume.StepIndexBy(1);
- end;
- KeyMatch := theKey = '+';
- if KeyMatch then
- theTarget.DoDefaultMethod := false;
-
- oSoundVolume.StepIndexBy(1);
- end;
- KeyMatch := theKey = 'n';
- if KeyMatch then
- theTarget.DoDefaultMethod := false;
-
- oBinder.Goto(oIntro_Two_18);
- end;
- KeyMatch := theKey = 'm';
- if KeyMatch then
- theTarget.DoDefaultMethod := false;
-
- oBinder.Goto(oMain_Menu_1);
- end;
- end;
-
- with
- Enabled is true; Shown is false;
- X is 30; Y is 24; Width is 0; Height is 0;
- end;
- end;
-
-
- object oOP_SCRP_PIC_19_1 is cPictureHandler
- with
- Duration is 140;
- Supplier is oOP_SCRP_PIC;
- Behavior is cDefaultBehavior
- has
- Onscreen(theTarget)
- do
- oOP_SCRP_MOV_19_2.Run(true);
- end;
-
- with
- Enabled is false; Shown is true;
- X is 0; Y is 0; Width is 640; Height is 480;
- end;
- end;
-
-
- object oOP_SCRP_MOV_19_2 is cMovieHandler
- with
- Supplier is oOP_SCRP_MOV;
- Behavior is cDefaultBehavior
- has
- Finished(theTarget)
- do
- oBinder.SetTransition(oDissolve, 30);
- oBinder.Goto(oIntro_Two_18);
- end;
-
- with
- Enabled is false; Shown is true;
- X is 112; Y is 169; Width is 120; Height is 120;
- end;
- end;
-
-